home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / dsp / dspgroup / m56000_1.arc / FFT16.ASM < prev    next >
Encoding:
Assembly Source File  |  1986-01-21  |  454 b   |  31 lines

  1.     page    132,66,2,2
  2.     opt    nomd,nomex,loc,cre,nocex
  3.  
  4.     include    'fftlib'
  5.  
  6. ;
  7. ; Main program to call the FFT macro
  8. ;    Argument list
  9. ;
  10. ;    16 point complex DIT FFT
  11. ;    4 FFT passes
  12. ;    Data starts at address 0
  13. ;    Twiddle factor table starts at address 16
  14. ;
  15. reset    equ    0
  16. start    equ    $100
  17. points    equ    16
  18. passes    equ    4
  19. data    equ    0
  20. twiddle    equ    16
  21.  
  22.     sin16    twiddle
  23.  
  24.     opt    mex
  25.     org    p:reset
  26.     jmp    start
  27.  
  28.     org    p:start
  29.     ditfft    points,passes,data,twiddle
  30.     end
  31.